+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
+Mon Oct 29 12:21:49 2001 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Don't use AC_CHECK_FILE to check for a
+ file since it always spits warnings about cross compilation,
+ use -f instead. It's not like we cross compile properly
+ anyways.
+
+ * configure.in (gtktargetlib): Move call to AC_PROG_CC
+ to suppress autoconf warning.
+
+ * acconfig.h: Add some missing #undefs from recent
+ Win32 additions.
+
Mon Oct 29 11:31:40 2001 Owen Taylor <otaylor@redhat.com>
* m4macros/gtk-2.0.m4: Don't try to use pkg-config
#undef GTK_COMPILED_WITH_DEBUGGING
#undef HAVE_CATGETS
+#undef HAVE_DIMM_H
#undef HAVE_DIRENT_H
#undef HAVE_GETTEXT
#undef HAVE_IPC_H
#undef HAVE_SHAPE_EXT
#undef HAVE_SYS_SELECT_H
#undef HAVE_SYS_TIME_H
+#undef HAVE_WINSOCK_H
#undef HAVE_WINTAB
#undef HAVE_XCONVERTCASE
#undef HAVE_XFT
AM_CONFIG_HEADER(config.h)
dnl Initialize libtool
+AC_PROG_CC
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
AM_SANITY_CHECK
# Checks for programs.
-AC_PROG_CC
AC_ISC_POSIX
AM_PROG_CC_STDC
AC_PROG_INSTALL
#include <wintab.h>],
[],
[AC_MSG_RESULT(yes)
- AC_CHECK_FILE([$with_wintab/lib/i386/wntab32x.lib],
- [have_wintab=yes
- AC_DEFINE(HAVE_WINTAB)
- WINTAB_LIB="$with_wintab/lib/i386/wntab32x.lib"
- AC_SUBST(WINTAB_LIB)],
- [have_wintab=no])
+ if test -f $with_wintab/lib/i386/wntab32x.lib ; then
+ have_wintab=yes
+ AC_DEFINE(HAVE_WINTAB)
+ WINTAB_LIB="$with_wintab/lib/i386/wntab32x.lib"
+ AC_SUBST(WINTAB_LIB)
+ else
+ have_wintab=no
+ fi
],
[AC_MSG_RESULT(no)
have_wintab=no])